home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / TC Prog Guide.cpt / app ƒ / class.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-06  |  596 b   |  27 lines  |  [TEXT/KAHL]

  1. /*
  2. *   FILE:    class.c
  3. *   AUTHOR:  R.G.
  4. *   CREATED: June 25, 1990
  5. *   
  6. *   define generic class methods
  7. */
  8.  
  9. # include "class.h"
  10.  
  11. /******************************************************************
  12. *   define generic init() method
  13. ******************************************************************/
  14. boolean     Generic_Class::init(void)
  15. {
  16.     return TRUE;
  17. }
  18.  
  19. /******************************************************************
  20. *   define generic destroy() method
  21. ******************************************************************/
  22. boolean     Generic_Class::destroy(void)
  23. {
  24.     return TRUE;
  25. }
  26.  
  27.